home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Financial / Stopwatch2.3 / Source / BrowserViewMgr.h < prev    next >
Text File  |  1995-06-12  |  537b  |  28 lines

  1. /*
  2.  * For legal stuff see the file COPYRIGHT
  3.  */
  4. #import "ViewMgr.h"
  5. #import "ClientInfo.h"
  6.  
  7. @interface BrowserViewMgr : ViewMgr
  8. {
  9.   id    browser;
  10.   List    *selectedCells;
  11. }
  12.  
  13. - selectedItem;
  14. - (void)displaySummary;
  15.  
  16. /*
  17.  * Must be implemented in the subclass
  18.  */
  19. - (SEL)addMethod;
  20. - (SEL)deleteMethod;
  21. - (SEL)sortMethod;
  22. - itemEditor;            /* return instance of editor class */
  23. - info:(ClientInfo *)info itemAt:(int)position; /* return the given item from the list */
  24. - (int)itemCount:(ClientInfo *)info; /* how many items in our list */
  25.  
  26.  
  27. @end
  28.